home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / gnu / djgpp / src / texinfo-.1 / libtxi / makefile.djg < prev    next >
Encoding:
Makefile  |  1993-08-29  |  279 b   |  21 lines

  1. OBJS =  getopt.o getopt1.o
  2.  
  3. PROGS = libtxi.a
  4.  
  5. CFLAGS = -O2
  6.  
  7. .c.o:
  8.     gcc -c -I. $(CFLAGS) $<
  9.  
  10. libtxi.a: $(OBJS)
  11.     ar qcv libtxi.a $(OBJS)
  12.     ranlib libtxi.a
  13.  
  14. getopt.o: getopt.c getopt.h
  15. getopt1.o: getopt1.c getopt.h
  16. alloca.o: alloca.c
  17.  
  18. clean :
  19.     -del *.o
  20.     -del *.a
  21.